home *** CD-ROM | disk | FTP | other *** search
- _global.world = this;
- this.onEnterFrame = function()
- {
- loadAnim.striper.setMask("bar");
- sofar = this.getBytesLoaded();
- total = this.getBytesTotal();
- percent = Math.ceil(sofar / total * 100);
- loadAnim.percentDisplay = percent + "%";
- loadAnim.bar._xscale = percent;
- if(total == sofar)
- {
- gotoAndPlay(2);
- delete this.onEnterFrame;
- }
- };
- stop();
-